home *** CD-ROM | disk | FTP | other *** search
/ Chip: 2005 Utilities / CHIP Utilities 2005.7z / CHIP Utilities 2005.iso / images / freesco.igz / freesco.img / router / etc / cron.cfg < prev    next >
Encoding:
Text File  |  2003-06-11  |  1.2 KB  |  24 lines

  1. # If you don't want the output of a cron job mailed to you, you have to direct
  2. # any output to /dev/null.  We'll do this here since these jobs should run
  3. # properly on a newly installed system, but if they don't the average newbie
  4. # might get quite perplexed about getting strange mail every 5 minutes. :^)
  5. #
  6. # Run ANY_program every 5 minutes
  7. # 0,5,10,15,20,25,30,35,40,45,50,55 * * * *    /usr/bin/ANY_program 1>/dev/null 2>/dev/null
  8. #
  9. # This touches a filename in the temp directory so that you can see cron is
  10. # working if the timestamp is current. Comment it out if it bugs you. :^)
  11. * * * * *       touch /var/.crond_running 1>/dev/null 2>dev/null
  12. #
  13. # If you have a dynamic dns account and you have a semi permanent IP then you
  14. # will want to uncomment the next line so that your account will be checked to 
  15. # make sure that it has been updated within the last 30 days.
  16. # 0 */1 1 jan-dec *    exec dyndns 1>/dev/null 2>/dev/null
  17. #
  18. # If you want your time server to update automaticly everyday then uncomment
  19. # the line below. This is not recommended for dialup connections. The server
  20. # will update automaticly everytime there is a new external IP address 
  21. # regardless of this setting.
  22. # 0 0 * * * exec synctime 1>/dev/null 2>/dev/null
  23. #
  24.